    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Zorgt dat je website niet horizontaal scrollbaar is */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Zorgt dat alles binnen de breedte van het scherm blijft */
* {
  box-sizing: border-box;
}


    body {
      font-family: 'Segoe UI', sans-serif;
      background: #f2f2f2;
      color: #333;
    }

    /* HEADER */
    .header {
      background: linear-gradient(to right,#0077aa, #004466);
  padding: 120px 20px 100px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
      color: white;
      padding-bottom: 80px;
      position: relative;
    }

    /* NAVBAR */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 10px 30px;
      position: relative;
      z-index: 10;
    }

    .navbar-logo img {
      height: 100px;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      cursor: pointer;
      color: white;
      z-index: 1002;
      transition: transform 0.3s ease;
    }

    .menu-toggle.is-active {
      transform: rotate(90deg);
    }

    .navbar-menu {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    .navbar-menu a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .navbar-menu a:hover {
      color: #f97316;
    }

    /* HERO */
    .hero-content {
      text-align: center;
      margin-top: auto;
    }

    .hero-content h1 {
      font-size: 3rem;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .cta-button {
      background-color: #ffd700;
      color: #004466;
      padding: 15px 30px;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .cta-button:hover {
      background-color: #ffc400;
    }

    /* RESPONSIVE NAVBAR */
    @media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    z-index: 2002;
  }

  .navbar-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px; /* Offscreen */
    height: 100vh;
    width: 300px;
    background-color: #004466;
    padding: 60px 30px;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 2000;
  }

  .navbar-menu.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-menu a {
    font-size: 1.2rem;
    width: 100%;
    display: block;
    color: #fff;
    padding: 10px 0;
    transition: background 0.3s ease;
  }

  .navbar-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }
    }









.services-section {
  padding: 6rem 2rem;
  background: #f5f7fa;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.service-card p {
  color: #555;
  font-size: 1rem;
}











.about-section {
  position: relative;
  background: url('ChatGPT\ Image\ 27\ jun\ 2025\,\ 13_18_45.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-overlay {
  background: rgba(0, 17, 34, 0.7); /* donkere transparantie */
  padding: 3rem;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #f97316;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
 



.cta-button:hover {
  background: #ea580c;
  box-shadow: 0 0 15px rgba(2  49, 115, 22, 0.7);
}


@media (max-width: 768px) {
  .about-section {
    height: auto;
    padding: 4rem 2rem;
  }

  .about-overlay {
    padding: 2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}








.why-us-section {
  background: #f5f7fa;
  padding: 6rem 2rem;
  text-align: center;
}

.why-us-header h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

.why-us-header p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-8px);
}

.icon {
  font-size: 2.5rem;
  color: #f97316;
  margin-bottom: 1rem;
}






.stats-section {
  padding: 6rem 2rem;
  background-color: #00334e;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-title2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #f0f0f0;
}

.section-subtitle2 {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 3rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 200px;
  max-width: 240px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.number {
  font-size: 3rem;
  font-weight: 700;
  color: #007acc;
  margin-bottom: 0.5rem;
}





.cta-section {
  background-color: #00334e;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  margin: 4rem auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff6b00;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e65c00;
}

.btn-secondary {
  background-color: #ffffff;
  color: #00334e;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}










.faq-section {
  background: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.faq-header h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 1rem;
}

.faq-header p {
  color: #666;
  margin-bottom: 3rem;
}

.faq-items {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 2rem;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #f97316;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #444;
  line-height: 1.6;
}







.footer {
      background: linear-gradient(to right,#0077aa, #004466);
  color: #f1f5f9;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.6;
}

.footer a:hover {
  color: #f97316;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
  margin-top: -15px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #f97316;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  border-top: 1px solid #1e293b;
  padding-top: 1rem;
}

.developed-by {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.developer-logo {
  width: 90px;
  height: auto;
  vertical-align: middle;
  filter: brightness(1.1);
  transition: opacity 0.3s ease;
}

.developer-logo:hover {
  opacity: 0.8;
}

.footer-bottom {
  opacity: 1 !important;
  visibility: visible !important;
}



 .whatsapp-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .whatsapp-message {
      background-color: #25D366;
      color: white;
      padding: 10px 15px;
      border-radius: 20px;
      margin-bottom: 10px;
      font-family: sans-serif;
      font-size: 14px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }

    .whatsapp-message.show {
      opacity: 1;
      transform: translateY(0);
    }

    .whatsapp-button {
      background-color: #25D366;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }







